home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxpdash.c < prev    next >
C/C++ Source or Header  |  1997-03-04  |  6KB  |  188 lines

  1. /* Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxpdash.c */
  20. /* Dash expansion for paths */
  21. #include "math_.h"
  22. #include "gx.h"
  23. #include "gsmatrix.h"            /* for gscoord.h */
  24. #include "gscoord.h"
  25. #include "gxfixed.h"
  26. #include "gsline.h"
  27. #include "gzline.h"
  28. #include "gzpath.h"
  29.  
  30. /* Expand a dashed path into explicit segments. */
  31. /* The path contains no curves. */
  32. private int subpath_expand_dashes(P4(const subpath *, gx_path *,
  33.                      const gs_imager_state *,
  34.                      const gx_dash_params *));
  35. int
  36. gx_path_expand_dashes(const gx_path *ppath_old, gx_path *ppath,
  37.   const gs_imager_state *pis)
  38. {    const subpath *psub;
  39.     const gx_dash_params *dash = &gs_currentlineparams(pis)->dash;
  40.     int code = 0;
  41.  
  42.     if ( dash->pattern_size == 0 )
  43.       return gx_path_copy(ppath_old, ppath, true);
  44.     gx_path_init(ppath, ppath_old->memory);
  45.     for ( psub = ppath_old->first_subpath; psub != 0 && code >= 0;
  46.           psub = (const subpath *)psub->last->next
  47.         )
  48.       code = subpath_expand_dashes(psub, ppath, pis, dash);
  49.     if ( code < 0 )
  50.       gx_path_release(ppath);
  51.     return code;
  52. }
  53.  
  54. private int
  55. subpath_expand_dashes(const subpath *psub, gx_path *ppath,
  56.   const gs_imager_state *pis, const gx_dash_params *dash)
  57. {    const float *pattern = dash->pattern;
  58.     int count, index;
  59.     bool ink_on;
  60.     float elt_length;
  61.     fixed x0 = psub->pt.x, y0 = psub->pt.y;
  62.     fixed x, y;
  63.     const segment *pseg;
  64.     int wrap = (dash->init_ink_on && psub->is_closed ? -1 : 0);
  65.     int drawing = wrap;
  66.     segment_notes notes = ~sn_not_first;
  67.     int code;
  68.  
  69.     if ( (code = gx_path_add_point(ppath, x0, y0)) < 0 )
  70.       return code;
  71.     /*
  72.      * To do the right thing at the beginning of a closed path, we have
  73.      * to skip any initial line, and then redo it at the end of the
  74.      * path.  Drawing = -1 while skipping, 0 while drawing normally, and
  75.      * 1 on the second round.  Note that drawing != 0 implies ink_on.
  76.      */
  77. top:    count = dash->pattern_size;
  78.     ink_on = dash->init_ink_on;
  79.     index = dash->init_index;
  80.     elt_length = dash->init_dist_left;
  81.     x = x0, y = y0;
  82.     pseg = (const segment *)psub;
  83.     while ( (pseg = pseg->next) != 0 && pseg->type != s_start )
  84.        {    fixed sx = pseg->pt.x, sy = pseg->pt.y;
  85.         fixed udx = sx - x, udy = sy - y;
  86.         double length, dx, dy;
  87.         double scale = 1;
  88.         double left;
  89.  
  90.         if ( !(udx | udy) )    /* degenerate */
  91.             dx = 0, dy = 0, length = 0;
  92.         else
  93.            {    gs_point d;
  94.             dx = udx, dy = udy;    /* scaled as fixed */
  95.             gs_imager_idtransform(pis, dx, dy, &d);
  96.             length = hypot(d.x, d.y) * (1.0 / fixed_1);
  97.             if ( gs_imager_currentdashadapt(pis) )
  98.               { double reps = length / dash->pattern_length;
  99.                 scale = reps / ceil(reps);
  100.                 /* Ensure we're starting at the start of a */
  101.                 /* repetition.  (This shouldn't be necessary, */
  102.                 /* but it is.) */
  103.                 count = dash->pattern_size;
  104.                 ink_on = dash->init_ink_on;
  105.                 index = dash->init_index;
  106.                 elt_length = dash->init_dist_left * scale;
  107.               }
  108.            }
  109.         left = length;
  110.         while ( left > elt_length )
  111.            {    /* We are using up the line segment. */
  112.             double fraction = elt_length / length;
  113.             fixed nx = x + (fixed)(dx * fraction);
  114.             fixed ny = y + (fixed)(dy * fraction);
  115.  
  116.             if ( ink_on )
  117.               { if ( drawing >= 0 )
  118.                   code = gx_path_add_line_notes(ppath, nx, ny,
  119.                             notes & pseg->notes);
  120.                 notes |= sn_not_first;
  121.               }
  122.             else
  123.               { if ( drawing > 0 )    /* done */
  124.                   return 0;
  125.                 code = gx_path_add_point(ppath, nx, ny);
  126.                 notes &= ~sn_not_first;
  127.                 drawing = 0;
  128.               }
  129.             if ( code < 0 )
  130.               return code;
  131.             left -= elt_length;
  132.             ink_on = !ink_on;
  133.             if ( ++index == count )
  134.               index = 0;
  135.             elt_length = pattern[index] * scale;
  136.             x = nx, y = ny;
  137.            }
  138.         elt_length -= left;
  139.         /* Handle the last dash of a segment. */
  140. on:        if ( ink_on )
  141.            {    if ( drawing >= 0 )
  142.               { code =
  143.                   (pseg->type == s_line_close && drawing > 0 ?
  144.                    gx_path_close_subpath_notes(ppath,
  145.                         notes & pseg->notes) :
  146.                    gx_path_add_line_notes(ppath, sx, sy,
  147.                         notes & pseg->notes));
  148.                 notes |= sn_not_first;
  149.               }
  150.            }
  151.         else
  152.           {    code = gx_path_add_point(ppath, sx, sy);
  153.             notes &= ~sn_not_first;
  154.             if ( elt_length < fixed2float(fixed_epsilon) &&
  155.                  (pseg->next == 0 || pseg->next->type == s_start)
  156.                )
  157.               { /*
  158.                  * Ink is off, but we're within epsilon of the end
  159.                  * of the dash element, and at the end of the
  160.                  * subpath.  "Stretch" a little so we get a dot.
  161.                  */
  162.                 if ( code < 0 )
  163.                   return code;
  164.                 elt_length = 0;
  165.                 ink_on = true;
  166.                 if ( ++index == count )
  167.                   index = 0;
  168.                 elt_length = pattern[index] * scale;
  169.                 goto on;
  170.               }
  171.             if ( drawing > 0 )    /* done */
  172.               return code;
  173.             drawing = 0;
  174.            }
  175.         if ( code < 0 )
  176.           return code;
  177.         x = sx, y = sy;
  178.        }
  179.     /* Check for wraparound. */
  180.     if ( wrap && drawing <= 0 )
  181.        {    /* We skipped some initial lines. */
  182.         /* Go back and do them now. */
  183.         drawing = 1;
  184.         goto top;
  185.        }
  186.     return 0;
  187. }
  188.